16. Async Callbacks in Android

Async Callbacks in Android

Quiz #1

(Note: The format of the quiz in the video has been changed)
Which MediaPlayer callback method will notify us when the MediaPlayer has finished playing the audio file?

SOLUTION: OnCompletionListener.onCompletion(MediaPlayer mp)

Task Description:

Quiz #2
Complete the task to match the screenshot below.

Task List:

Task Feedback:

Done implementing Async Callbacks, but not done with the app just yet :) Continue on and let's dive more into media resources.

The app pops up with a message "I'm done!" after implementing async callbacks.

The app pops up with a message "I'm done!" after implementing async callbacks.

Solution

Async Callbacks in Android 1